home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d12
/
jazlib.arc
/
SOUNDOFF.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1988-12-18
|
279 b
|
15 lines
assume cs:_text
_text segment public byte 'code'
public _soundoff
_soundoff proc near
in al,61h ; get contents of system port b
and al,11111100b ; turn speaker and timer off
out 61h,al ; send out new values to port b
ret
_soundoff endp
_text ends
end